home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00310.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  533 b   |  20 lines

  1. on mouseUp
  2.   global Double
  3.   if Double = 0 then
  4.     if the visible of sprite 48 = 1 then
  5.       put "inside 283, double false and vis 48 true"
  6.       set MovHt to 480
  7.       set MovWd to 640
  8.       set the moveableSprite of sprite 48 to 1
  9.       set the height of sprite 48 to MovHt
  10.       set the width of sprite 48 to MovWd
  11.       put the locH of sprite 48
  12.       put the locV of sprite 48
  13.       spriteBox(48, 0, 0, 640, 480)
  14.       set the moveableSprite of sprite 48 to 0
  15.       updateStage()
  16.       set Double to 1
  17.     end if
  18.   end if
  19. end
  20.